home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 015 / epsilon.arc / BETTERC.ARC / COMMENT.H < prev    next >
Encoding:
Text File  |  1986-01-03  |  1.0 KB  |  39 lines

  1. /*    comment.h
  2.  *    Define the global variables used by comment.
  3.  */
  4.  
  5. /*
  6.  *  Copyright (c) 1985 by David Dyer-Bennet
  7.  *  Permission for non-commercial use is hereby granted; all other
  8.  *  rights are reserved.
  9.  *
  10.  *  Written by David Dyer-Bennet
  11.  *  Terrabit Software
  12.  *  4242 Minnehaha Ave S
  13.  *  Minneapolis, MN 55406
  14.  *  Sysop of Fido 14/341, The Terraboard, (612) 721-8967 3/12/24 24hrs
  15.  *  (612) 721-8800 NOT 24 hrs!  More like noon to midnight
  16.  */
  17.  
  18. /*
  19.  *  Revision history:
  20.  *
  21.  *      Edit    Date        Who     Description
  22.  *
  23.  *  Version 1.0
  24.  *      1       3-Jan-86    DD-B    Initial creation
  25.  */
  26.  
  27. buffer char *comment_recog;
  28.                     /* RE string that matches start of comment */
  29. buffer char *comment_begin;
  30.                     /* String inserted to start comment */
  31. buffer char *comment_end;
  32.             /* String inserted to end comment, or 0 if end-of-line ends it */
  33. buffer short comment_col;
  34.                     /* Comment column */
  35. buffer short comment_limit;
  36.                     /* Rightmost pos to start new comment at */
  37.  
  38. /* End of comment.h */
  39.